home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / prog / vision75.arj / PW.DOC < prev    next >
Text File  |  1993-07-15  |  6KB  |  225 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.                               SIMPLE PASSWORD
  19.                             ===================
  20.                             (v 1.7 15-Jul-1993)
  21.                                     by
  22.                             Maurizio  Ammannato
  23.                     Registered to Maurizio's House 1993
  24.                     (GEnie Mail Address = M.AMMANNATO)
  25.  
  26.  
  27.  
  28.  
  29.  
  30. HAPPYWARE CONCEPT
  31. =================
  32. My  personal  concept  of HAPPYWARE is to deliver a fully working package at 
  33. $0  licence  fee to enjoy together this fantastic opportunity to share ideas 
  34. and knowledge over physical, cultural, race and religious boundaries.
  35.  
  36.  
  37. Use  it  as  you  want,  but  don't make any kind of profit on my work which 
  38. you've received free of charge.
  39.  
  40.  
  41.  
  42.  
  43.  
  44. MY PREFERRED SENTENCE
  45. =====================
  46. "Killing  jobs  is  like  to kill part of yourself. Let me know when you are 
  47. without legs and arms. I'll throw you my coin".        (Oiziruam Otannamma)
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.                                                      Maurizio Ammannato
  77.                                                      Via Concordia N.80
  78.                                                     22049 Valmadrera (CO)
  79.                                                           I T A L Y
  80.                                                     ---------------------
  81.                                                     (Tel. 39-341-581081)
  82.  
  83.  
  84.  
  85.  
  86.  
  87. DESCRIPTION
  88. ===========
  89. Any  good  password  protection  has the main problem that an intruder knows 
  90. that  there  is  a  PC  password  protection  program. Then, if he is clever 
  91. enough.....
  92.  
  93. Well,  my  first  objective  was  to  let the intruder feel to be at the DOS 
  94. usual C:\=> prompt.
  95.  
  96. Now  typing  in  any  DOS  command,  he  gets back (randomly) one of ten DOS 
  97. errors  message.  After  a  specified  number (5) of wrong tries the PC goes 
  98. into  an  endless  loop. The only way to go out of the loop is to reboot the 
  99. computer  (Ctrl-C  disabled).  What  we hope is that the intruder will think 
  100. something  is wrong  with  the  computer and try with another PC not as well 
  101. protected as your!
  102.  
  103. On  the  contrary giving the correct password will cause the program to exit  
  104. and to come back to usual DOS prompt or to continue the .BAT sequence.
  105.  
  106.  
  107.  
  108.  
  109. RUNNING PW
  110. ==========
  111. PW  is designed to be run from your AUTOEXEC.BAT file. Since batch files can 
  112. be  terminated  early  by  hitting Control-C, PW should run as early in your  
  113. AUTOEXEC.BAT  as  possible. This will give your intruder less opportunity to 
  114. cut  it off. Ideally, PW should be proceeded only by ECHO OFF (or @ECHO OFF) 
  115. and by the PATH command if necessary.
  116.  
  117.  
  118.  
  119.  
  120.  
  121. CUSTOMIZING PW PASSWORD AND PROMPT
  122. ==================================
  123. PW  has  the  ciao  password  and  the  C> DOS prompt default values. If you 
  124. simply  run  PW without any parameter, you get the C> prompt and you have to 
  125. type  ciao  o  quit  PW.  You  can change both password and prompt using the 
  126. command line option :
  127.  
  128.  
  129. C>PW maumau                      prompt C> (default) and paswword maumau
  130.  
  131. C>PW "C:\=>"                     prompt C:\=> and password ciao (default)
  132.  
  133. C>PW "A>" pippo /v               prompt A> , password pippo and virus
  134.                                  emulation option ON
  135.  
  136.  
  137. or in the AUTOEXEC.BAT file:
  138.  
  139. @echo off
  140. c:\utility\pw "C:\=>" maumau
  141. ..............
  142. ..............
  143.  
  144.  
  145.  
  146. To  let  PW  understand you want to change the default C> prompt you have to 
  147. write,  just  after  the PW program name, the prompt you wish, enclosed into 
  148. two  brackets  (decimal  34)  to  don't  enter  in  conflict with DOS piping 
  149. characters.  For  instance  typing  PW  "A>" means you want the ciao default 
  150. password and the A> prompt.
  151.  
  152.  
  153. If  you  want  to  change both prompt and password you have to write FIRSTLY 
  154. the  prompt  (ENCLOSED into two brackets) and THEN the new password (WITHOUT 
  155. any bracket).
  156.  
  157.  
  158. If  you  want to hide the password when you are typing it (to don't let your 
  159. visitor  to  see  it)  type at PW prompt the ! character (decimal 33) BEFORE 
  160. the  password, as first character. In this way PW doesn't print the password 
  161. on the screen.
  162.  
  163.  
  164.  
  165.  
  166. VIRUS SIMULATION
  167. ================
  168. You  can  also  let  your  intruder get the feeling your PC is full of virus 
  169. putting  a  /v at the end of PW command line. After first attempt, a strange 
  170. character  (from  dec  1  up  to  dec 31) will appear randomly on the screen 
  171. simulating  a  famous virus family. At this point the intruder has really to 
  172. escape from your PC! The line command looks like :
  173.  
  174.                            PW "prompt" password /v
  175.  
  176.  
  177.  
  178.  
  179.  
  180. EXTRA SAFETY
  181. ============
  182. To  be  100%  secure  you should lock your bootable diskette device (usually 
  183. A:).   Better  if  you  can  do  it  via  an hardware mechanism because it's 
  184. tremendously  dangerous  to  do  it via software. In fact if for some reason 
  185. you  cannot  boot  from usual hard disk C: device, you don't have any way to 
  186. access your PC.
  187.  
  188. To  let  your  intruder being more confused, you can leave a bootable floppy 
  189. disk  close  to  A:  device with the PW program set up into the AUTOEXEC.BAT 
  190. file with the A: prompt, i.e. :
  191.  
  192. @echo off
  193. pw "A:\>" pwpw
  194.  
  195. In  this  way,  if the intruder trays to reboot from A: just to make another 
  196. attempt, he gets the same result as before.
  197.  
  198.  
  199.  
  200.  
  201. FORGETTING PASSWORD
  202. ===================
  203. If  for  some reason you forget the password typed in the AUTOEXEC.BAT file, 
  204. reboot  from  a bootable diskette in dev  A:, look at your AUTOEXEC.BAT file 
  205. and change or remove the old password.
  206.  
  207.  
  208.  
  209.  
  210. SCREEN SAVER
  211. ============
  212. PW  can  be  also used as a safe screen saver. When you have to take a break 
  213. or  a lunch or to leave your PC unattended for a certain amount of time, you 
  214. have  two  problems : 1) you have to save your screen phosphorous and 2) you 
  215. have to avoid 'lunch-time intruders'.
  216.  
  217.  
  218. Well,  again,  execute  PW  manually  (or  put  PW as a screen saver in your 
  219. program manager) and go for lunch.
  220.  
  221. PW  approximately each 5 minutes changes DOS prompt screen row (screen saver 
  222. function)  and  doesn't  let  any  intruder  to  enter  you  PC without your 
  223. password  (security  function).  You  can set a different password each time 
  224. you leave your PC unattended using the command line option.
  225.